All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.BrowserDelegate

public interface BrowserDelegate
This interface wraps the Objective-C category defining delegate methods of the NSBrowser class. The methods in this interface are delegate methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o browserCreateRowsForColumn(Browser, int, Matrix)
A wrapper for the - browser:createRowsForColumn:inMatrix: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).
 o browserDidScroll(Browser)
A wrapper for the - browserDidScroll: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).
 o browserIsColumnValid(Browser, int)
A wrapper for the - browser:isColumnValid: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).
 o browserNumberOfRowsInColumn(Browser, int)
A wrapper for the - browser:numberOfRowsInColumn: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).
 o browserSelectCellWithStringInColumn(Browser, String, int)
A wrapper for the - browser:selectCellWithString:inColumn: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).
 o browserSelectRowInColumn(Browser, int, int)
A wrapper for the - browser:selectRow:inColumn: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).
 o browserTitleOfColumn(Browser, int)
A wrapper for the - browser:titleOfColumn: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).
 o browserWillDisplayCell(Browser, Object, int, int)
A wrapper for the - browser:willDisplayCell:atRow:column: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).
 o browserWillScroll(Browser)
A wrapper for the - browserWillScroll: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).

Methods

 o browserNumberOfRowsInColumn
 public abstract int browserNumberOfRowsInColumn(Browser sender,
                                                 int column)
A wrapper for the - browser:numberOfRowsInColumn: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).

 o browserCreateRowsForColumn
 public abstract void browserCreateRowsForColumn(Browser sender,
                                                 int column,
                                                 Matrix matrix)
A wrapper for the - browser:createRowsForColumn:inMatrix: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).

 o browserWillDisplayCell
 public abstract void browserWillDisplayCell(Browser sender,
                                             Object cell,
                                             int row,
                                             int column)
A wrapper for the - browser:willDisplayCell:atRow:column: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).

 o browserTitleOfColumn
 public abstract String browserTitleOfColumn(Browser sender,
                                             int column)
A wrapper for the - browser:titleOfColumn: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).

 o browserSelectCellWithStringInColumn
 public abstract boolean browserSelectCellWithStringInColumn(Browser sender,
                                                             String title,
                                                             int column)
A wrapper for the - browser:selectCellWithString:inColumn: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).

 o browserSelectRowInColumn
 public abstract boolean browserSelectRowInColumn(Browser sender,
                                                  int row,
                                                  int column)
A wrapper for the - browser:selectRow:inColumn: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).

 o browserIsColumnValid
 public abstract boolean browserIsColumnValid(Browser sender,
                                              int column)
A wrapper for the - browser:isColumnValid: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).

 o browserWillScroll
 public abstract void browserWillScroll(Browser sender)
A wrapper for the - browserWillScroll: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).

 o browserDidScroll
 public abstract void browserDidScroll(Browser sender)
A wrapper for the - browserDidScroll: Objective-C instance method implemented by delegates of the Browser class (known as the NSBrowser Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index